VintaSoft Imaging .NET SDK 12.4: Documentation for .NET developer
Vintasoft.Imaging.ColorManagement Namespace / SimpleCompositeColorTransform Class / Create Methods / Create(ColorTransform[]) Method
Syntax Exceptions Requirements SeeAlso
In This Topic
    Create(ColorTransform[]) Method (SimpleCompositeColorTransform)
    In This Topic
    Creates a new instance of the SimpleCompositeColorTransform class.
    Syntax
    'Declaration
    
    Public Overloads Shared Function Create( _
    ByVal ParamArray transforms
    Array of sub transforms of composite transform.
    () As ColorTransform _
    ) As SimpleCompositeColorTransform
    public static SimpleCompositeColorTransform Create(
    params ColorTransform[] transforms
    )
    public: static SimpleCompositeColorTransform* Create(
    params ColorTransform*[]* transforms
    )
    public:
    static SimpleCompositeColorTransform^ Create(
    ... array<ColorTransform^>^ transforms
    )

    Parameters

    transforms
    Array of sub transforms of composite transform.

    Return Value

    A SimpleCompositeColorTransform that is a composition of specified color transforms.
    Exceptions
    ExceptionDescription
    Thrown if transforms is null.
    Thrown if transforms.Length is equal to 0.
    Thrown if transforms has incompatible color spaces of some adjacent color transforms.
    Requirements

    Target Platforms: .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    See Also